home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_rstatd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10227);
  10.  script_version ("$Revision: 1.14 $");
  11.  script_cve_id("CAN-1999-0624");
  12.  name["english"] = "rstatd service";
  13.  name["francais"] = "Service rstatd";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The rstatd RPC service is running.  It provides an attacker interesting
  18. information such as :
  19.  
  20.     - the CPU usage
  21.     - the system uptime
  22.     - its network usage
  23.     - and more
  24.     
  25. Letting this service run is not recommended.
  26. Risk factor : Low";
  27.  
  28.  
  29.  desc["francais"] = "
  30. Le service RPC rstatd tourne.
  31. Il donne α un pirate des informations
  32. sensibles telles que :
  33.  
  34.     - l'usage du CPU
  35.     - l'uptime du systΦme
  36.     - l'usage rΘseau
  37.     - et bien plus
  38.     
  39. C'est gΘnΘrallement une mauvaise
  40. idΘe de laisser ce service ouvert.
  41.  
  42. Facteur de risque : Faible";
  43.  
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Checks the presence of a RPC service";
  48.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  56.  family["english"] = "RPC"; 
  57.  family["francais"] = "RPC";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("rpc_portmap.nasl");
  60.  script_require_keys("rpc/portmap");
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. include("misc_func.inc");
  69.  
  70.  
  71. RPC_PROG = 100001;
  72. tcp = 0;
  73. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  74. if(!port){
  75.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  76.     tcp = 1;
  77.     }
  78.  
  79. if(port)
  80. {
  81.  if(tcp)security_warning(port);
  82.  else security_warning(port, protocol:"udp");
  83. }
  84.